Use 16px as default button and small toolbar icon sizes
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Thu, 23 Jan 2014 02:02:58 +0000 (21:02 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Thu, 23 Jan 2014 16:51:51 +0000 (11:51 -0500)
https://bugzilla.gnome.org/show_bug.cgi?id=350190

gtk/deprecated/gtkiconfactory.c
gtk/gtkenums.h

index 7b4394ac8d0bd9271a347a461adf0c58a7e5d90b..6aacfa9c7c3e606eb112593449860d4b090f0b5f 100644 (file)
@@ -697,13 +697,13 @@ init_icon_sizes (void)
 
       icon_sizes[GTK_ICON_SIZE_BUTTON].size = GTK_ICON_SIZE_BUTTON;
       icon_sizes[GTK_ICON_SIZE_BUTTON].name = "gtk-button";
-      icon_sizes[GTK_ICON_SIZE_BUTTON].width = 20;
-      icon_sizes[GTK_ICON_SIZE_BUTTON].height = 20;
+      icon_sizes[GTK_ICON_SIZE_BUTTON].width = 16;
+      icon_sizes[GTK_ICON_SIZE_BUTTON].height = 16;
 
       icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].size = GTK_ICON_SIZE_SMALL_TOOLBAR;
       icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].name = "gtk-small-toolbar";
-      icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].width = 18;
-      icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].height = 18;
+      icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].width = 16;
+      icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].height = 16;
 
       icon_sizes[GTK_ICON_SIZE_LARGE_TOOLBAR].size = GTK_ICON_SIZE_LARGE_TOOLBAR;
       icon_sizes[GTK_ICON_SIZE_LARGE_TOOLBAR].name = "gtk-large-toolbar";
index 95ec910b859a721e5acdf697ac09de39cdfce824..15efe91f6a8f57fe906b1e33b4ed22ed3ce368ac 100644 (file)
@@ -254,9 +254,9 @@ typedef enum
  * GtkIconSize:
  * @GTK_ICON_SIZE_INVALID: Invalid size.
  * @GTK_ICON_SIZE_MENU: Size appropriate for menus (16px).
- * @GTK_ICON_SIZE_SMALL_TOOLBAR: Size appropriate for small toolbars (18px).
+ * @GTK_ICON_SIZE_SMALL_TOOLBAR: Size appropriate for small toolbars (16px).
  * @GTK_ICON_SIZE_LARGE_TOOLBAR: Size appropriate for large toolbars (24px)
- * @GTK_ICON_SIZE_BUTTON: Size appropriate for buttons (20px)
+ * @GTK_ICON_SIZE_BUTTON: Size appropriate for buttons (16px)
  * @GTK_ICON_SIZE_DND: Size appropriate for drag and drop (32px)
  * @GTK_ICON_SIZE_DIALOG: Size appropriate for dialogs (48px)
  *